home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Celestin Apprentice 2
/
Apprentice-Release2.iso
/
Tools
/
MPW
/
GCC 1.37.1r15
/
Tests
/
void-adj.c
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1993-01-19
|
225 b
|
24 lines
|
[
TEXT/MPS
]
/* Compile with -fomit-frame-pointer. f2() should both add and subtract from sp. */
pascal int foo();
int glob;
f1()
{
glob = foo();
}
f2()
{
(void) foo();
}
pascal char bar();
f3()
{
baz(1, 2, 3);
(void) bar();
}